Continue Statement
Continues execution with the next iteration of a loop.
Syntax
Continue
or
Continue [For | While | Do]
or
Continue For LoopVariable
Part | Type | Description |
LoopVariable | Datatype of a For loop variable: Integer, Single, or Double | The loop variable that controls iteration of the For statement that you want to continue. |
Notes
The Continue statement enables you to jump to the end of a loop and continue execution without executing the lines of code between the Continue statement and the end of the loop. If there is ambiguity concerning which loop you mean, you can use the second or third syntaxes to clarify the situation. For example, if you have nested For loops and want to jump from a line in the innermost loop to the outermost loop, you can use the last syntax to identify the loop variable that controls the outermost loop.
See Also
Do, Exit, For, While statements.